home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 17
/
CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso
/
CUCD
/
Programming
/
DiceSource
/
src
/
alib
/
csup
/
dos_support
/
dopkt0.c
< prev
next >
Wrap
C/C++ Source or Header
|
1994-02-18
|
393b
|
22 lines
/* AmigaDOS tag call */
#include <exec/types.h>
#include <utility/tagitem.h>
#include <clib/dos_protos.h>
#ifndef HYPER
#define HYPER
#endif
typedef struct TagItem TagItem;
// LONG DoPkt( struct MsgPort *port, long action, long arg1, long arg2, long arg3,
// long arg4, long arg5 );
LONG
HYPER ## DoPkt0( struct MsgPort *port, long action )
{
return DoPkt(port,action,0,0,0,0,0);
}